Specifies related objects to include while loading the client view.

Namespace:  C1.Data
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
public virtual ClientView<T> Include(
	string path
)
Visual Basic
Public Overridable Function Include ( _
	path As String _
) As ClientView(Of T)

Parameters

path
Type: System..::..String
A dot-separated list of related objects to load along with the entities of this client view.

Return Value

A client view that loads the related objects together with its entities every time it fetches entities from the server.

See Also